home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / program / 356 / defs / storage.def < prev    next >
Text File  |  1992-03-11  |  1KB  |  38 lines

  1. DEFINITION MODULE Storage;
  2.  
  3. (*    File name: Storage.def                    *)
  4. (*    Creation : March 1985                    *)
  5. (*    Function : Provid the memory operations            *)
  6. (*    By     : Stan Osborne                    *)
  7. (*                                *)
  8.  
  9. (*
  10. *    Copyright (c) 1985, 1986 by
  11. *    Djavaheri Bros., Foster City, California.
  12. *    All Rights Reserved.
  13. *
  14. *    This software is furnished under a license and may be used and copied
  15. *    only  in accordance with  the  terms  of  such  license and  with the
  16. *    inclusion of the above copyright notice.  This software or  any other
  17. *    copies thereof may not be provided or otherwise made available to any
  18. *    other  person.   No title to and ownership of the  software is  herby
  19. *    transferred.
  20. *
  21. *    The information in this software is  subject to change without notice
  22. *    and  should  not be construed as a commitment by Djavaheri Bros.   No
  23. *    warranty is implied or expressed.
  24. *
  25. *   SCCID  = "1.1    1/26/86"; 
  26. *)
  27. (*    History of modifcation                    *)
  28. (*    Date        Who        Why            *)
  29. (*                                *)
  30. FROM SYSTEM IMPORT ADDRESS;
  31. EXPORT QUALIFIED
  32.  ALLOCATE,DEALLOCATE,CondAllocate;
  33. PROCEDURE ALLOCATE(VAR a: ADDRESS;n: CARDINAL);
  34. PROCEDURE DEALLOCATE(VAR a: ADDRESS;n: CARDINAL);
  35. PROCEDURE CondAllocate(VAR a: ADDRESS;n: CARDINAL;VAR success:BOOLEAN);
  36.  
  37. END Storage.
  38.